a5abaf97e86d117216396422f3b487958a7e6ac3,components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java,FtpOperations,doStoreFile,#String#String#Exchange#,508

Before Change


            }
            if (endpoint.getFileExist() == GenericFileExist.Append) {
                log.trace("Client appendFile: {}", targetName);
                return client.appendFile(targetName, is);
            } else {
                log.trace("Client storeFile: {}", targetName);
                return client.storeFile(targetName, is);

After Change


            log.debug("About to store file: {} using stream: {}", targetName, is);
            if (endpoint.getFileExist() == GenericFileExist.Append) {
                log.trace("Client appendFile: {}", targetName);
                answer = client.appendFile(targetName, is);
            } else {
                log.trace("Client storeFile: {}", targetName);
                answer = client.storeFile(targetName, is);